Carbon


QDOpcodeProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDOpcodeProcPtr) (
    Rect *fromRect, 
    Rect *toRect, 
    SInt16 opcode, 
    SInt16 version
);

You would declare your function like this if you were to name it MyQDOpcodeCallback:

void MyQDOpcodeCallback (
    Rect *fromRect, 
    Rect *toRect, 
    SInt16 opcode, 
    SInt16 version
);

© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)